home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / copyx23.zip / DELX.BAT < prev    next >
DOS Batch File  |  1991-12-12  |  741b  |  30 lines

  1.   @ECHO OFF
  2.   REM   - DELX MAY BE USED FREE OF ANY CHARGE
  3.   REM   - DELX is Copyrighted, 1991 by Dixie Aire Computer Services, Inc.
  4.   REM   -     All rights are reserved
  5.  
  6.   IF .%1 == .a: GOTO DOIT
  7.   IF .%1 == .A: GOTO DOIT
  8.   IF .%1 == .b: GOTO DOIT
  9.   IF .%1 == .B: GOTO DOIT
  10.   IF .%1 == .c: GOTO HORNER
  11.   IF .%1 == .C: GOTO HORNER
  12.   GOTO ERROR
  13.  
  14. :DOIT
  15.   ECHO Y|DEL %1\*.* >nul
  16.   GOTO END
  17.  
  18. :HORNER
  19.   echo  
  20.   ECHO Come on Bimbo! .. WAKE UP!   You just tried to erase the hard drive!
  21.   echo  
  22.  
  23. :ERROR
  24.   ECHO Instructions: DELX will erase complete diskettes.
  25.   ECHO  
  26.   ECHO               DELX A: will erase all files on the floppy in A:.
  27.   ECHO                        - Confirmation is not used! -
  28.   ECHO  
  29. :END
  30.